projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d48fc0
)
(isearch-message-prefix):
author
Richard M. Stallman
<rms@gnu.org>
Thu, 19 Oct 1995 22:23:57 +0000
(22:23 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 19 Oct 1995 22:23:57 +0000
(22:23 +0000)
Change "wrapped" to "overwrapped" when past original start point.
lisp/isearch.el
patch
|
blob
|
history
diff --git
a/lisp/isearch.el
b/lisp/isearch.el
index 3e74c811170dfb1b152ca6ef384d368a1577d79a..cd035b08b3edc3df8baddcc164febb7f83127281 100644
(file)
--- a/
lisp/isearch.el
+++ b/
lisp/isearch.el
@@
-1312,6
+1312,11
@@
If there is no completion possible, say so and continue searching."
;; If currently failing, display no ellipsis.
(or isearch-success (setq ellipsis nil))
(let ((m (concat (if isearch-success "" "failing ")
+ (if (and isearch-wrapped
+ (if isearch-forward
+ (> (point) isearch-opoint)
+ (< (point) isearch-opoint)))
+ "over")
(if isearch-wrapped "wrapped ")
(if isearch-word "word " "")
(if isearch-regexp "regexp " "")